home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / lotus / lotus025.dsk / TYPETEXT.LSS < prev    next >
Text File  |  1995-07-28  |  317b  |  12 lines

  1. ' The .Type command is a shortcut to type text into the document    
  2. .Type("Hello World.")
  3. .Type("[Enter] Line 1 [Enter]")
  4. .Type("[CtrlHome][ShiftCtrlEnd]")
  5. .Text.Font.Bold = True    
  6. .Type("[CtrlEnd]")
  7.  
  8. ' Or 
  9. ' access the .Text object at the current location
  10. .Text.InsertText("Hello")
  11. .Text.InsertText("World")
  12.